home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d20 / fddev202.arc / PASCAL.ARC / SESSION.INC < prev    next >
Text File  |  1991-10-01  |  2KB  |  50 lines

  1. (*
  2. **  Session.Inc (FrontDoor)
  3. **
  4. **  Copyright 1991 Joaquim H. Homrighausen. All rights reserved.
  5. **
  6. **  PASSWORD.FD format for FrontDoor 2.00+
  7. **
  8. **  Last revision:  91-10-02
  9. **                            
  10. **  -------------------------------------------------------------------------
  11. **  This information is not necessarily final and is subject to change at any
  12. **  given time without further notice
  13. **  -------------------------------------------------------------------------
  14. *)
  15.  
  16.  
  17. (*
  18. **  Status values, non-exclusive bit values
  19. **
  20. **  I.e. If the NOFREQS and ACTIVE options were set for an entry in the
  21. **       security list, the status field would contain 0x05.
  22. *)
  23. CONST
  24.   ACTIVE    = $01;                        (* Active, as opposed to inactive *)
  25.   DELETED   = $02;                                 (* Never written to disk *)
  26.   NOFREQS   = $04;                 (* Don't allow file requests from system *)
  27.   NOMAIL    = $08;                          (* Don't allow mail from system *)
  28.   NOEMSI    = $10;                    (* No outbound EMSI sessions w/system *)
  29.   NOFTSC1   = $20;                  (* No outbound FTSC-1 sessions w/system *)
  30.   NOZAP     = $40;                  (* No outbound ZedZap sessions w/system *)
  31.   NOYOOHOO  = $80;                  (* No outbound YooHoo sessions w/system *)
  32.  
  33. (*
  34. **  Note that any settings in the FDOPT environment variable applies to
  35. **  all sessions (inbound AND outbound). For example, if FDOPT contains
  36. **  "NOEMSI", NO EMSI handshaking will be done, regardless of settings
  37. **  in the security manager
  38. *)
  39. TYPE
  40.   PwdRec    = RECORD
  41.     Zone,
  42.     Net,
  43.     Node,
  44.     Point   : word;
  45.     Password: Array[1..9] of char;                        (* NUL terminated *)
  46.     Status  : byte;
  47.   End;
  48.  
  49. (* end of file "Session.Inc" *)
  50.